home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000107_jaltman2@nyc.rr.com_Wed May 28 14:14:26 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  90 lines

  1. Article: 14332 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!nntp1.tagonline.com!nycmny1-snf1.gtei.net!news.gtei.net!colt.net!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.freenet.de!feed.news.nacamar.de!newsfeed.vmunix.org!peer02.cox.net!cox.net!news-server.columbus.rr.com!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!53ab2750!not-for-mail
  3. From: "Jeffrey Altman [Road Runner NYC]" <jaltman2@nyc.rr.com>
  4. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030525
  5. X-Accept-Language: en-us, en
  6. MIME-Version: 1.0
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: server mode help needed
  9. References: <20030527123809.04226.00000370@mb-m15.aol.com>
  10. In-Reply-To: <20030527123809.04226.00000370@mb-m15.aol.com>
  11. Content-Type: text/plain; charset=us-ascii; format=flowed
  12. Content-Transfer-Encoding: 7bit
  13. Lines: 67
  14. Message-ID: <eAVAa.73380$h42.41351@twister.nyc.rr.com>
  15. Date: Wed, 28 May 2003 02:57:14 GMT
  16. NNTP-Posting-Host: 66.108.138.151
  17. X-Complaints-To: abuse@rr.com
  18. X-Trace: twister.nyc.rr.com 1054090634 66.108.138.151 (Tue, 27 May 2003 22:57:14 EDT)
  19. NNTP-Posting-Date: Tue, 27 May 2003 22:57:14 EDT
  20. Organization: Road Runner - NYC
  21. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14332
  22.  
  23. I would suggest upgrading to 2.1.3.  There are some issues with data 
  24. loss on timeouts on serial ports when there is high cpu load in 2.0.x
  25.  
  26.  
  27.  
  28. Greg180 wrote:
  29. > Windows 98/Kermit 95 2.0.1
  30. > The script show below has worked well for some time.  For unknown reasons we
  31. > have recently found our server machine in an unbroken cycle as displayed on the
  32. > server display screen.
  33. > Bad Sequence Number
  34. > Check Sum Error
  35. >    the above appearing several time in sequence then followed by
  36. > FAILURE: Too many retries
  37. > This sequence continues until we Ctrl\C out of Kermit.
  38. > I have been able to create this same scenario by starting the script and then
  39. > placing a voice call to the host, and hanging up the voice call after the modem
  40. > starts it handshake.
  41. > During the duration, the line to the modem remains busy.
  42. > I am reading the manual looking for a way to trap such errors, or a server
  43. > setting which will force an exit from server mode.
  44. > Any suggestions as to diagnostic work or an appropiate fix via script will be
  45. > very much welcomed.
  46. > Thanks,
  47. > Current script follows:
  48. > echo ----------------------------\013
  49. > echo -   elcomm.ksx started     -\013
  50. > echo ----------------------------\013
  51. > set speed 115200
  52. > ;---------------------------
  53. > ; modem change
  54. > set flow rts/cts
  55. > set modem speed-matching off
  56. > set speed 14
  57. > ; --------------------------
  58. > ENABLE DELETE
  59. > set server login CPS CPS1
  60. > set server display on
  61. > set file collision overwrite
  62. > cd f:\wtdcom
  63. > while true {
  64. >   clear command-screen
  65. >   echo Now listening.....(ver 2.1).\013
  66. >   echo
  67. >   echo Two quick Ctrl-C's to fully escape Kermit
  68. >   echo
  69. >   sleep 1
  70. >   answer 0
  71. >   if success server
  72. >   }
  73. > echo out of the loop.. 20 sec to end\013
  74. > sleep 20
  75.  
  76.